home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / fsovl / zip / unzip / zip.h < prev   
Encoding:
C/C++ Source or Header  |  1993-01-22  |  330 b   |  12 lines

  1. /* This is a dummy zip.h to allow crypt.c from Zip to compile for unzip */
  2.  
  3. #include "unzip.h"
  4. #define SKIP_TIME_H   /* don't include time.h again in crypt.c */
  5.  
  6. #define local
  7. typedef unsigned short ush;
  8. typedef unsigned long ulg;
  9.  
  10. extern ULONG crc_32_tab[];
  11. #define crc32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
  12.